Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633456 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/29 - To Do List

font/ cody/swapnilsparsh/30DaysOfJavaScript/29 - To Do List/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/29 - To Do List/assets/
    1 Items
  • to-do-list.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/29 - To Do List/style.css
    103 Views
    0 Comments
    * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "sans";
    }

    @font-face {
    index.html cody/swapnilsparsh/30DaysOfJavaScript/29 - To Do List/index.html
    325 Views
    0 Comments
    <!DOCTYPE html>
    <html lang = "en">
    <head>
    <meta charset = "UTF-8"/>
    <meta http-equiv = "X-UA-Compatible" content = "IE=edge"/>
    <meta name = "viewport" content = "width=device-width, initial-scale=1.0"/>
    <link rel = "shortcut icon" href = "assets/to-do-list.png" type = "image/x-icon">
    <link rel = "stylesheet" href = "style.css"/>
    script.js cody/swapnilsparsh/30DaysOfJavaScript/29 - To Do List/script.js
    159 Views
    0 Comments
    // Create a "close" button and append it to each list item
    var myNodelist = document.getElementsByTagName('LI');
    var i;
    for (i = 0; i < myNodelist.length; i++) {
    var division = document.createElement('div');
    var span = document.createElement('SPAN');
    var txt = document.createTextNode('\u00D7');
    var editSpan = document.createElement('SPAN');